home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Skunkware 5
/
Skunkware 5.iso
/
src
/
X11
/
xlock
/
blank.c
next >
Wrap
C/C++ Source or Header
|
1995-05-09
|
446b
|
30 lines
#ifndef lint
static char sccsid[] = "@(#)blank.c 1.5 91/05/24 XLOCK";
#endif
/*-
* blank.c - blank screen for xlock, the X Window System lockscreen.
*
* Copyright (c) 1991 by Patrick J. Naughton.
*
* See xlock.c for copying information.
*
* Revision History:
* 31-Aug-90: Written.
*/
#include "xlock.h"
/*ARGSUSED*/
void
drawblank(win)
Window win;
{
}
void
initblank(win)
Window win;
{
XClearWindow(dsp, win);
}